home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-10-20 | 582 b | 26 lines | [TEXT/KAHL] |
- // Get Machine Name
- // Excel™ 3.0 External Code Resource
- // Copyright® 1991 Cutting Edge Enterprises
-
- // FreeWare
-
- // Questions or Comments
- // GEnie R.HARGIS2
- // AppleLink CUTTING.EDGE
-
-
- #include <GestaltEqu.h>
-
- pascal unsigned char * main(unsigned char *nameString)
- {
-
- long response; // Return value from Gestalt
-
- Gestalt(gestaltMachineType,&response); // Call Gestalt, request machine type
-
- GetIndString(nameString,kMachineNameStrID,response); // Get machine ID from response value
-
- return(nameString); // Return pascal name string back to Excel™
-
- }
-